diff options
Diffstat (limited to 'app/[lng]/partners/ocr/layout.tsx')
| -rw-r--r-- | app/[lng]/partners/ocr/layout.tsx | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/app/[lng]/partners/ocr/layout.tsx b/app/[lng]/partners/ocr/layout.tsx new file mode 100644 index 00000000..f1654bf2 --- /dev/null +++ b/app/[lng]/partners/ocr/layout.tsx @@ -0,0 +1,17 @@ +import { ReactNode } from 'react'; +import { SiteFooter } from '@/components/layout/Footer'; +import { HeaderSimple } from '@/components/layout/HeaderSimple'; + +export default function EvcpLayout({ children }: { children: ReactNode }) { + return ( + <div className="relative flex min-h-svh flex-col bg-background"> + <HeaderSimple /> + <main className="flex flex-1 flex-col"> + <div className='container-wrapper'> + {children} + </div> + </main> + <SiteFooter/> + </div> + ); +}
\ No newline at end of file |
